A basic Pie chart with dollar syntax example

[No canvas support]

This goes in the documents header:
<script src="RGraph.common.core.js"></script>
<script src="RGraph.common.dynamic.js"></script>
<script src="RGraph.pie.js"></script>
Put this where you want the chart to show up:
<canvas id="cvs" width="600" height="250">
    [No canvas support]
</canvas>
This is the code that generates the chart:
<script>
    window.onload = function ()
    {
        var pie = new RGraph.Pie({
            id: 'cvs',
            data: [4,8,3,4,6,9,5],
            options: {
                textAccessible: true,
                labels: ['Pete','Lou','Pob','Luis','Barney','Fred','Wilma']
            }
        }).draw()
        
        pie.$2.onclick = function (e, shape)
        {
            alert('The third segment has been clicked');
        }
        
        pie.$2.onmousemove = function (e, shape)
        {
            return true;
        }
    };
</script>